home *** CD-ROM | disk | FTP | other *** search
- Path: softsite.co.at!wsog
- Date: 21 Mar 1996 12:49:00 +0100
- From: wsog@softsite.co.at (Walter Sommergruber)
- Newsgroups: comp.lang.c++
- Message-ID: <65IfHC2rnTB@softsite.co.at>
- References: <4ir6pe$rub@news.asiaonline.net>
- Subject: Re: What's mean about '...'
- X-Newsreader: XP v3.02
- X-Charset: ISO-8859-1
- Organization: Sommergruber Software & Dienstleistungen
-
- Wong Chi Yat (cywong@asiaonline.net) wrote on 21.03.96
- about "What's mean about '...'":
-
- > Could you tell me what's mean about "..." which is defined in C language
- > procedure, e.g. void test(char *t, ...)
- >
- > I wish you could tell me how to implement?
-
- This are functions with a variable number of arguments (like printf).
- The first argument has to be a description of the following arguments.
-
- Search in your manuals for the va_start, va_end and va_arg functions
- and macros...
-
- --- Take a look at ...
- Walter Sommergruber The Software Site
- email: wsog@softsite.co.at http://www.softsite.co.at/softsite/
-